home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gcc / GccFindHit.lha / Makefile < prev    next >
Makefile  |  1995-05-22  |  362b  |  12 lines

  1. CC = gcc
  2. #uncomment the following line if the host is a little endian machine
  3. #(the Amiga is *not* little endian :-)
  4. #ENDIANNESS = -DLITTLE_ENDIAN
  5.  
  6. #Comment the following line if your compiler doesn't like it
  7. #or if you absolutely want ixemul
  8. AFLAGS = -noixemul
  9.  
  10. GccFindHit: GccFindHit.c defs.h
  11.     $(CC) $(AFLAGS) -Wall -O $(ENDIANNESS) GccFindHit.c -o GccFindHit
  12.